home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-02-28 | 45.0 KB | 2,408 lines |
- TABLE OF CONTENTS
-
- lbbs.library/AllocNode
- lbbs.library/FreeNode
- lbbs.library/Read
- lbbs.library/ReadNoCR
- lbbs.library/Write
- lbbs.library/WriteCRLF
- lbbs.library/Prompt
- lbbs.library/ReadOne
- lbbs.library/DisplayFile
- lbbs.library/EditFile
- lbbs.library/SendTextConsole
- lbbs.library/BBSName
- lbbs.library/SysOpName
- lbbs.library/InsTagFile
- lbbs.library/Name
- lbbs.library/Password
- lbbs.library/Location
- lbbs.library/Phonenumber
- lbbs.library/SlotNumber
- lbbs.library/LvlAccess
- lbbs.library/RatioType
- lbbs.library/Ratio
- lbbs.library/ComputerType
- lbbs.library/MessagePosted
- lbbs.library/UploadFiles
- lbbs.library/DownloadFiles
- lbbs.library/CallsSystem
- lbbs.library/LastCalled
- lbbs.library/TimeUsedToday
- lbbs.library/TimeAllowed
- lbbs.library/TimeRemain
- lbbs.library/UploadBytes
- lbbs.library/DownloadBytes
- lbbs.library/Dailylimit
- lbbs.library/DownloadBytesToday
- lbbs.library/ExpertMode
- lbbs.library/LineLength
- lbbs.library/NodesStatus
- lbbs.library/GetConferenceName
- lbbs.library/GetBBS_Location
- lbbs.library/GetThisNode_Status
- lbbs.library/GetMainLine
- lbbs.library/ReturnCmd
- lbbs.library/ZmodemSend
- lbbs.library/ZmodemReceive
- lbbs.library/ScreenAddress
- lbbs.library/NodeTaskPri
- lbbs.library/GetChatFlag
- lbbs.library/STAMP_LASTON
- lbbs.library/CurrTime
- lbbs.library/Version
- lbbs.library/ChatSet
- lbbs.library/DeviceNode
- lbbs.library/DeviceUnitNode
- lbbs.library/BaudRateNode
- lbbs.library/SendQRS
- lbbs.library/PRV_COMMAND
- lbbs.library/Get_ConferenceNo
- lbbs.library/DropDTR
- lbbs.library/Get_NodeTask
- lbbs.library/Get_UserBaudrate
- lbbs.library/Get_LogonType
- lbbs.library/Get_ScrLeft
- lbbs.library/Get_ScrTop
- lbbs.library/Get_ScrWidth
- lbbs.library/Get_ScrHeight
- lbbs.library/PurgeLine
- lbbs.library/PurgeLineStart
- lbbs.library/PurgeLineEnd
- lbbs.library/NonStopText
- lbbs.library/LineCount
- lbbs.library/ScreenType
- lbbs.library/QuickText
- lbbs.library/GetDirfilePath
- lbbs.library/CallRexx
- lbbs.library/GetConfPath
- lbbs.library/GetUserData
- lbbs.library/PutUserData
- lbbs.library/SpyNode
- lbbs.library/FreeSpy
- lbbs.library/LoadLetter
- lbbs.library/LoadLetterRaw
- lbbs.library/SaveLetter
- lbbs.library/QuietNode
- lbbs.library/UserStatus
- *lbbs.library/LoadTagfile
- *lbbs.library/SaveTagfile
- lbbs.library/ConfAccess
-
-
-
-
-
-
- lbbs.library/AllocNode
-
- NAME
- AllocNode - Alloc node for use with this program
-
- SYNOPSIS
- node = AllocNode(number)
- D0 D1
-
- APTR AllocNode(ULONG);
-
-
- FUNCTION
- Allocate a node for use with the program.
-
- INPUTS
- number - the node number to alloc
-
- RESULT
- node - a pointer to the node for use with the program
-
- SEE ALSO
-
-
-
- lbbs.library/FreeNode
-
- NAME
- FreeNode - Remove reservation from bbs
-
- SYNOPSIS
- FreeNode(node)
- D1
-
- VOID FreeNode(APTR);
-
-
- FUNCTION
- Removes an allocated node.
-
- If the node is already free or node pointer invalid
- D0 will return NODE_ERROR
-
-
- INPUTS
- node - a pointer to a node structure
-
-
- SEE ALSO
-
-
-
- lbbs.library/Read
-
- NAME
- Read - get string from serial/console
-
- SYNOPSIS
- result = Read(node, buffer, length)
- D0 D1 D2 D3
-
- BOOL *Read(APTR, APTR, ULONG);
-
- FUNCTION
- This function reads a string from serial/console port.
- and returns the string typed in BUFFER.
- reading is terminated with a CR, and stringbuffer is ended
- with a NULL.
- function will automatically send a CR after its pressed.
-
-
- INPUTS
- node - the node ptr given by AllocNode
- buffer - APTR, pointer to a buffer for text
- length - max string length to read from device
-
- RESULT
- stringlength - ULONG, characters received in BUFFER
- or bbsstatus - (ULONG negative)
-
-
- SEE ALSO
- Prompt, ReadNoCR, ReadOne
-
-
-
-
- lbbs.library/ReadNoCR
-
- NAME
- ReadNoCR - get string from serial/console
-
- SYNOPSIS
- result = ReadNoCR(node, buffer, length)
- D0 D1 D2 D3
-
- BOOL ReadNoCR(APTR, APTR, ULONG);
-
- FUNCTION
- This function reads a string from serial/console port.
- and returns the string typed in BUFFER.
- reading is terminated with a CR, and stringbuffer is ended
- with a NULL.
-
-
- INPUTS
- node - the node ptr given by AllocNode
- buffer - APTR, pointer to a buffer for text
- length - max string length to read from device
-
- RESULT
- stringlength - ULONG, characters received in BUFFER
- or bbsstatus - (ULONG negative)
-
-
- SEE ALSO
- Prompt, Read, ReadOne
-
-
-
-
-
- lbbs.library/Write
-
- NAME
- Write - send string to serial/console
-
-
- SYNOPSIS
- result = Write(node, buffer, length)
- D0 D1 D2 D3
-
- BOOL Write(APTR, APTR, ULONG);
-
- FUNCTION
- Sends a string to serial/console, and returns.
-
- INPUTS
- node - the node ptr given by AllocNode
- buffer - string buffer to type
- length - length of string (if NULL, string terminates
- with a NULL)
-
- RESULT
- bbsstatus
-
-
- SEE ALSO
- WriteCRLF
-
-
-
-
-
- lbbs.library/WriteCRLF
-
- NAME
- WriteCRLF - send string to serial/console, and selectable
- adds a CR/LF to the end of a string
-
-
- SYNOPSIS
- result = WriteCRLF(node, buffer, length, Boolean)
- D0 D1 D2 D3 D4
-
- BOOL WriteCRLF(APTR, APTR, ULONG, Boolean);
-
- FUNCTION
- Sends a string to serial/console, adds a CR/LF to the end
- of the string and returns.
-
- INPUTS
- node - the node ptr given by AllocNode
- buffer - string buffer to type
- length - length of string (if NULL, string terminates
- with a NULL)
- boolean - TRUE / FALSE
-
- RESULT
- bbsstatus
-
-
- SEE ALSO
-
-
-
-
-
-
-
- lbbs.library/Prompt
-
- NAME
- Prompt - type prompt string and get input from serial/console.
-
- SYNOPSIS
- result = Prompt(node, buffer, length, string)
- D0 D1 D2 D3 D4
-
- BOOL Prompt(APTR, APTR, ULONG, APTR);
-
- FUNCTION
- This function types a string to the user and thereafter
- get a inputstring from serial/console port.
- and returns the string typed in BUFFER.
- reading is terminated with a CR, and stringbuffer is ended
- with a NULL.
-
-
- INPUTS
- node - the node ptr given by AllocNode
- buffer - APTR, pointer to a buffer for text
-
- RESULT
- stringlength - ULONG, characters received in BUFFER
- or bbsstatus - (ULONG negative)
-
-
- SEE ALSO
- Read, ReadNoCR, ReadOne
-
-
-
-
-
-
- lbbs.library/ReadOne
-
- NAME
- ReadOne - get a single character from serial/console
-
- SYNOPSIS
- character = ReadOne(node, function)
- D0 D1 D2
-
- ULONG ReadOne(APTR, BOOL);
-
- FUNCTION
- This function reads a single character from serial/console port.
- and returns the character typed in D0.
- You can choose to only check serial port for one character,
- or wait until a character is returned.
-
- INPUTS
- node - the node ptr given by AllocNode
- function - BOOL, TRUE (Check) FALSE (wait)
-
- RESULT
- character - received character from input device, or
- result of bbsstatus.
-
- SEE ALSO
- Prompt, Read, ReadNoCR
-
-
-
-
- lbbs.library/DisplayFile
-
- NAME
- DisplayFile - Display a file to the user
-
- SYNOPSIS
- result = DisplayFile(node, Filename)
- D0 D1 D2
-
- BOOL DisplayFile(APTR, APTR);
-
- FUNCTION
- This function will display a file to the user,
- function is given the full pathname together with the filename.
-
- INPUTS
- node - the node ptr given by AllocNode
- filename - full pathname and filename
-
-
- SEE ALSO
-
-
-
-
- lbbs.library/EditFile
-
- NAME
- EditFile - Edit a file with use of internal editor
-
- SYNOPSIS
- result = EditFile(node, buffer, maxlines)
- D0 D1 D2 D3
-
- BOOL EditFile(APTR, APTR, ULONG);
-
- FUNCTION
- This function will allow the user to edit a file
- with use of the internal editor.
- Function only edits buffer, the file to edit, must
- be loaded into the buffer before this function is started.
-
- INPUTS
- node - the node ptr given by AllocNode
- buffer - buffer pointer to a text to edit
- maxlines - number of maximum lines the user can enter.
-
- SEE ALSO
-
-
-
-
-
-
- lbbs.library/SendTextConsole
-
- NAME
- SendTextConsole - send string to console
-
-
- SYNOPSIS
- result = SendTextConsole(node, buffer, length, boolean)
- D0 D1 D2 D3 D4
-
- BOOL SendTextConsole(APTR, APTR, ULONG, Boolean);
-
- FUNCTION
- Sends a string to console, if selected adds a CR/LF to the end
- of the string and returns.
-
- INPUTS
- node - the node ptr given by AllocNode
- buffer - string buffer to type
- length - length of string (if NULL, string terminates
- with a NULL)
-
- boolean - choose add CRLF or not.
-
-
- RESULT
- bbsstatus
-
-
- SEE ALSO
-
-
-
- lbbs.library/BBSName
-
- NAME
- BBSName - retrieve bbsname used for current node
-
-
- SYNOPSIS
- BBSName(number, buffer)
- D1 D2
-
- VOID *BBSName(APTR, APTR);
-
- FUNCTION
- Retrieve BBS name of current node.
-
- INPUTS
- number - node number
- buffer - string buffer to put BBS name into.
-
- SEE ALSO
-
-
- lbbs.library/SysOpName
-
- NAME
- SysOpName - retrieve Sysopname used for current node
-
-
- SYNOPSIS
- SysOpName(number, buffer)
- D1 D2
-
- VOID *SysOpName(APTR, APTR);
-
- FUNCTION
- Retrieve sysop name of current node.
-
- INPUTS
- number - node number
- buffer - string buffer to put sysop name into.
-
- SEE ALSO
-
-
-
-
-
- lbbs.library/INSTagFile
-
- NAME
- INSTagFile - Insert file in the buffer for flagged files
-
-
- SYNOPSIS
- INSTagFile(node, buffer)
- D1 D2
-
- VOID *INSTagFile(APTR, APTR);
-
- FUNCTION
- Insert file(s) into buffer for flagged files to download.
-
- INPUTS
- node - the node ptr given by AllocNode
- buffer - buffer which holds filename(s)
-
- SEE ALSO
-
-
-
-
- lbbs.library/Name
-
- NAME
- Name - Retrieve or change username
-
-
- SYNOPSIS
- Name(node, Name, boolean)
- D1 D2 D3
-
- VOID *Name(APTR, APTR, Boolean);
-
- FUNCTION
- Retrieve or change username
-
- INPUTS
- node - the node ptr given by AllocNode
- buffer - buffer to put name in, or buffer which holds new
- name.
-
- boolean - retrieve/set
- SEE ALSO
-
-
-
-
- lbbs.library/Password
-
- NAME
- Password - Retrieve or change current users password
-
-
- SYNOPSIS
- Password(node, Password, boolean)
- D1 D2 D3
-
- VOID *Password(APTR, APTR, Boolean);
-
- FUNCTION
- Retrieve or change users password
-
- INPUTS
- node - the node ptr given by AllocNode
- buffer - buffer to put password in, or buffer which holds new
- password.
-
- boolean - retrieve/set
-
- SEE ALSO
-
-
-
- lbbs.library/Location
-
- NAME
- Location - Retrieve or change current users Location
-
-
- SYNOPSIS
- Location(node, buffer, Boolean)
- D1 D2 D3
-
- VOID *Location(APTR, APTR, Boolean);
-
- FUNCTION
- Retrieve or change users location
-
- INPUTS
- node - the node ptr given by AllocNode
- buffer - buffer to put location in, or buffer which holds new
- location.
-
- boolean - retrieve/set
-
- SEE ALSO
-
-
- lbbs.library/Phonenumber
-
- NAME
- Phonenumber - Retrieve or change current users phonenumber
-
-
- SYNOPSIS
- Phonenumber(node, buffer, Boolean)
- D1 D2 D3
-
- VOID *PhoneNumber(APTR, APTR, Boolean);
-
- FUNCTION
- Retrieve or change users phonenumber
-
- INPUTS
- node - the node ptr given by AllocNode
- buffer - buffer to put phoneno. in, or buffer which holds new
- phonenumber.
-
- boolean - retrieve/set
-
- SEE ALSO
-
-
- lbbs.library/Slotnumber
-
- NAME
- Slotnumber - Change current users slotnumber
-
-
- SYNOPSIS
- Slotnumber(node, Number)
- D1 D2
-
- VOID *SlotNumber(APTR, ULONG);
-
-
- FUNCTION
- Change users Slotnumber
-
-
- INPUTS
- node - the node ptr given by AllocNode
- Number - new slot number
-
- SEE ALSO
-
-
- lbbs.library/LvlAccess
-
- NAME
- LvlAccess - Change current users Levelaccess
-
-
- SYNOPSIS
- accesslvl = LvlAccess(node, Access, Boolean)
- D0 D1 D2 D3
-
- UWORD LvlAccess(APTR, UWORD, Boolean);
-
-
- FUNCTION
- Change users Levelaccess
-
-
- INPUTS
- node - the node ptr given by AllocNode
- Access - level access
- boolean - retrieve/set
-
- SEE ALSO
-
-
-
- lbbs.library/Ratiotype
-
- NAME
- RatioType - Retrieve or Change current users RatioType
-
-
- SYNOPSIS
- ratiotype = RatioType(node, Ratiotype, Boolean)
- D0 D1 D2 D3
-
- UWORD RatioType(APTR, UBYTE, Boolean);
-
-
- FUNCTION
- Retrieve or Change users RatioType
-
-
- INPUTS
- node - the node ptr given by AllocNode
- RatioType - RatioType
- boolean - retrieve/set
-
- SEE ALSO
-
-
- lbbs.library/Ratio
-
- NAME
- Ratio - Retrieve or Change current users Ratio
-
-
- SYNOPSIS
- Ratio = Ratio(node, Ratio, Boolean)
- D0 D1 D2 D3
-
- UWORD Ratio(APTR, UWORD, Boolean);
-
-
- FUNCTION
- Retrieve or Change users Ratio
-
-
- INPUTS
- node - the node ptr given by AllocNode
- Ratio - Ratio
- boolean - retrieve/set
-
- SEE ALSO
-
-
-
- lbbs.library/ComputerType
-
- NAME
- ComputerType - Retrieve or Change current users ComputerType
-
-
- SYNOPSIS
- ComType = ComputerType(node, Computer, Boolean)
- D0 D1 D2 D3
-
- UBYTE ComputerType(APTR, UWORD, Boolean);
-
-
- FUNCTION
- Retrieve or Change users computertype
-
-
- INPUTS
- node - the node ptr given by AllocNode
- Computer - ComputerType
- boolean - retrieve/set
-
- SEE ALSO
-
-
- lbbs.library/MessagePosted
-
- NAME
- MessagePosted - Retrieve or Change current users MessagePosted
-
-
- SYNOPSIS
- MsgPosted = MessagePosted(node, Number, Boolean)
- D0 D1 D2 D3
-
- ULONG MessagePosted(APTR, ULONG, Boolean);
-
-
- FUNCTION
- Retrieve or Change users MessagePosted
-
-
- INPUTS
- node - the node ptr given by AllocNode
- Number - MessagePosted
- boolean - retrieve/set
-
- SEE ALSO
-
-
-
- lbbs.library/UploadFiles
-
- NAME
- UploadFiles - Retrieve or Change current users UploadFiles
-
-
- SYNOPSIS
- UL_Files = UploadFiles(node, Number, Boolean)
- D0 D1 D2 D3
-
- ULONG UploadFiles(APTR, ULONG, Boolean);
-
-
- FUNCTION
- Retrieve or Change users UploadFiles
-
-
- INPUTS
- node - the node ptr given by AllocNode
- Number - UploadFiles
- boolean - retrieve/set
-
- SEE ALSO
-
-
- lbbs.library/DownloadFiles
-
- NAME
- DownloadFiles - Retrieve or Change current users DownloadFiles
-
-
- SYNOPSIS
- DL_Files = DownloadFiles(node, Number, Boolean)
- D0 D1 D2 D3
-
- ULONG DownloadFiles(APTR, ULONG, Boolean);
-
-
- FUNCTION
- Retrieve or Change users DownloadFiles
-
-
- INPUTS
- node - the node ptr given by AllocNode
- Number - DownloadFiles
- boolean - retrieve/set
-
- SEE ALSO
-
-
-
- lbbs.library/CallsSystem
-
- NAME
- CallsSystem - Retrieve or Change current users CallsSystem
-
-
- SYNOPSIS
- Calls = CallsSystem(node, Number, Boolean)
- D0 D1 D2 D3
-
- ULONG CallsSystem(APTR, ULONG, Boolean);
-
-
- FUNCTION
- Retrieve or Change users CallsSystem
-
-
- INPUTS
- node - the node ptr given by AllocNode
- Number - CallsSystem
- boolean - retrieve/set
-
- SEE ALSO
-
-
- lbbs.library/LastCalled
-
- NAME
- LastCalled - Retrieve or Change current users LastCalled
-
-
- SYNOPSIS
- datetime = LastCalled(node, Date, Boolean)
- D0 D1 D2 D3
-
- ULONG LastCalled(APTR, ULONG, Boolean);
-
-
- FUNCTION
- Retrieve or Change users LastCalled
-
-
- INPUTS
- node - the node ptr given by AllocNode
- Date - LastCalled
- boolean - retrieve/set
-
- SEE ALSO
-
-
-
- lbbs.library/TimeUsedToday
-
- NAME
- TimeUsedToday - Retrieve or Change current users TimeUsedToday
-
-
- SYNOPSIS
- minutes = TimeUsedToday(node, Minutes, Boolean)
- D0 D1 D2 D3
-
- UWORD TimeUsedToday(APTR, UWORD, Boolean);
-
- FUNCTION
- Retrieve or Change users TimeUsedToday
-
-
- INPUTS
- node - the node ptr given by AllocNode
- Minutes - TimeUsedToday
- boolean - retrieve/set
-
- SEE ALSO
-
-
-
-
- lbbs.library/TimeAllowed
-
- NAME
- TimeAllowed - Retrieve or Change current users TimeAllowed
-
-
- SYNOPSIS
- minutes = TimeAllowed(node, Minutes, Boolean)
- D0 D1 D2 D3
-
- UWORD TimeAllowed(APTR, UWORD, Boolean);
-
- FUNCTION
- Retrieve or Change users TimeAllowed
-
-
- INPUTS
- node - the node ptr given by AllocNode
- Minutes - TimeAllowed
- boolean - retrieve/set
-
- SEE ALSO
-
-
-
- lbbs.library/TimeRemain
-
- NAME
- TimeRemain - Retrieve or Change current users TimeRemain
-
-
- SYNOPSIS
- minutes = TimeRemain(node, Minutes, Boolean)
- D0 D1 D2 D3
-
- UWORD TimeRemain(APTR, UWORD, Boolean);
-
- FUNCTION
- Retrieve or Change users TimeRemain
-
-
- INPUTS
- node - the node ptr given by AllocNode
- Minutes - TimeRemain
- boolean - retrieve/set
-
- SEE ALSO
-
-
-
- lbbs.library/UploadBytes
-
- NAME
- UploadBytes - Retrieve or Change current users UploadBytes
-
-
- SYNOPSIS
- UL_Bytes = UploadBytes(node, Bytes, Boolean)
- D0 D1 D2 D3
-
- ULONG UploadBytes(APTR, ULONG, Boolean);
-
- FUNCTION
- Retrieve or Change users UploadBytes
-
-
- INPUTS
- node - the node ptr given by AllocNode
- Bytes - UploadBytes
- boolean - retrieve/set
-
- SEE ALSO
-
-
-
-
-
- lbbs.library/DownloadBytes
-
- NAME
- DownloadBytes - Retrieve or Change current users DownloadBytes
-
-
- SYNOPSIS
- DL_Bytes = DownloadBytes(node, Bytes, Boolean)
- D0 D1 D2 D3
-
- ULONG DownloadBytes(APTR, ULONG, Boolean);
-
- FUNCTION
- Retrieve or Change users DownloadBytes
-
-
- INPUTS
- node - the node ptr given by AllocNode
- Bytes - DownloadBytes
- boolean - retrieve/set
-
- SEE ALSO
-
-
-
-
-
- lbbs.library/DailyLimit
-
- NAME
- DailyLimit - Retrieve or Change current users DailyLimit
-
-
- SYNOPSIS
- DL_Limit = DailyLimit(node, Bytes, Boolean)
- D0 D1 D2 D3
-
- ULONG DailyLimit(APTR, ULONG, Boolean);
-
- FUNCTION
- Retrieve or Change users DailyLimit
-
-
- INPUTS
- node - the node ptr given by AllocNode
- Bytes - DailyLimit
- boolean - retrieve/set
-
- SEE ALSO
-
-
-
-
- lbbs.library/DownloadBytesToday
-
- NAME
- DownloadBytesToday - Retrieve or Change current users DownloadBytesToday
-
-
- SYNOPSIS
- DL_Today = DownloadBytesToday(node, Bytes, Boolean)
- D0 D1 D2 D3
-
- ULONG DownloadBytesToday(APTR, ULONG, Boolean);
-
- FUNCTION
- Retrieve or Change users DownloadBytesToday
-
-
- INPUTS
- node - the node ptr given by AllocNode
- Bytes - DownloadBytesToday
- boolean - retrieve/set
-
- SEE ALSO
-
-
- lbbs.library/ExperMode
-
- NAME
- Expertmode - Retrieve or Change current users ExpertMode status
-
-
- SYNOPSIS
- result = ExpertMode(node, Boolean)
- D0 D1 D2
-
- BOOL ExpertMode(APTR, Boolean);
-
- FUNCTION
- Retrieve or Change users Expertmode status
-
-
- INPUTS
- node - the node ptr given by AllocNode
- boolean - retrieve/set
-
-
- RESULT
- Status - TRUE means expert, FALSE means normal user
-
- SEE ALSO
-
-
-
-
- lbbs.library/LineLength
-
- NAME
- LineLength - Retrieve or Change current users LineLength
-
-
- SYNOPSIS
- lines = LineLength(node, Lines, Boolean)
- D0 D1 D2 D3
-
- UBYTE LineLength(APTR, UBYTE, Boolean);
-
- FUNCTION
- Retrieve or Change users LineLength
-
-
- INPUTS
- node - the node ptr given by AllocNode
- Lines - LineLength
- boolean - retrieve/set
-
- SEE ALSO
-
-
- lbbs.library/NodesStatus
-
- NAME
- NodesStatus - Retrieve status on all nodes
-
-
- SYNOPSIS
- list = NodesStatus()
- D0
-
- APTR NodesStatus();
-
- FUNCTION
- Retrieve status on all nodes
-
- RESULT
- APTR to a list for all nodes active
- first byte represent number of nodes in this system
- the following bytes represent status.
-
-
- SEE ALSO
- Nodestatus_ID
-
-
-
-
-
-
- lbbs.library/GetConferenceName
-
- NAME
- GetConferenceName - Retrieve current ConferenceName
-
-
- SYNOPSIS
- GetConferenceName(node, buffer)
- D1 D2
-
- VOID *GetConferenceName(APTR, APTR);
-
- FUNCTION
- Retrieve current conference name
-
-
- INPUTS
- node - the node ptr given by AllocNode
- buffer - buffer where conference name will be put.
-
- SEE ALSO
-
-
-
-
- lbbs.library/GetBBS_Location
-
- NAME
- GetBBS_Location - Retrieve BBS Location
-
- SYNOPSIS
- GetBBS_Location(number, buffer)
- D1 D2
-
- VOID *GetBBS_Location(ULONG, APTR);
-
- FUNCTION
- Retrieve current conference name
-
-
- INPUTS
- number - node number
- buffer - buffer where bbs path will be put.
-
- SEE ALSO
-
-
-
- lbbs.library/GetThisNode_Status
-
- NAME
- GetThisNode_Status - Retrieve Current Nodestatus
-
- SYNOPSIS
- GetThisNode_Status(node, buffer)
- D1 D2
-
- VOID *GetThisNode_Status(APTR, APTR);
-
- FUNCTION
- Retrieve current node status
- return string information will be DOWN/ONLINE/OFFLINE
- depending on a user is online or node is awaiting connect.
-
- INPUTS
- node - the node ptr given by AllocNode
- buffer - buffer where status text will be put.
-
- SEE ALSO
-
-
-
-
-
- lbbs.library/GetMainLine
-
- NAME
- GetMainLine - Retrieve Commandline parameters
-
- SYNOPSIS
- GetMainLine(node, buffer)
- D1 D2
-
- VOID *GetMainLine(APTR, APTR);
-
- FUNCTION
- Retrieve command line parameters
-
-
-
- INPUTS
- node - the node ptr given by AllocNode
- buffer - buffer where parameters will be put.
-
- SEE ALSO
-
-
-
-
- lbbs.library/ReturnCmd
-
- NAME
- ReturnCmd - Send Return command, when door is exited
-
- SYNOPSIS
- ReturnCmd(node, string)
- D1 D2
-
- VOID *ReturnCmd(APTR, APTR);
-
- FUNCTION
- Set a Returncommand which will be executed when
- door is exited
-
- INPUTS
- node - the node ptr given by AllocNode
- string - commandline with parameters
-
- SEE ALSO
-
-
-
-
-
-
-
- lbbs.library/ZmodemSend
-
- NAME
- ZmodemSend - Send a file with the Zmodem protocol
-
- SYNOPSIS
- result = ZmodemSend(node, filename)
- D0 D1 D2
-
- BOOL ZmodemSend(APTR, APTR);
-
- FUNCTION
- Send a file with the Zmodem protocol,
- filename must include full path
-
- INPUTS
- node - the node ptr given by AllocNode
- filename - filename ptr to name with full path
-
- RESULT
- succes - result will be TRUE / FALSE
-
- SEE ALSO
-
-
-
-
-
-
- lbbs.library/ZmodemReceive
-
- NAME
- ZmodemReceive - Receive a file with the Zmodem protocol
-
- SYNOPSIS
- result = ZmodemReceive(node, path)
- D0 D1 D2
-
- BOOL ZmodemReceive(APTR, APTR);
-
-
- FUNCTION
- Receive a file with the Zmodem protocol,
-
-
- INPUTS
- node - the node ptr given by AllocNode
- path - path to where to save file
-
- RESULT
- succes - result will be TRUE / FALSE
-
- SEE ALSO
-
-
-
-
- lbbs.library/ScreenAddress
-
- NAME
- ScreenAddress - Retrieve screen address
-
- SYNOPSIS
- address = ScreenAddress(node)
- D0 D1
-
- BPTR ScreenAddress(APTR);
-
- FUNCTION
- Retrieve screen address for current node
- if node is iconified, the serverscreen will be tried.
- result of which screen received is in D1
-
-
- INPUTS
- node - the node ptr given by AllocNode
-
- RESULT
- screen - APTR to the screen structure for current node
- NULL means that current node is ICONIFIED
-
- node - D1 holds either a NULL for node or 1 for server
- screen
-
- SEE ALSO
-
-
-
-
-
-
-
-
- lbbs.library/NodeTaskPri
-
- NAME
- NodeTaskPri - Retrieve current task priority of a node
-
- SYNOPSIS
- TaskPri = NodeTaskPri(number)
- D0 D1
-
- UBYTE NodeTaskPri(ULONG);
-
-
- FUNCTION
- Retrieve the task priority the current node is running at.
-
-
- INPUTS
- number - the node ptr given by AllocNode
-
- RESULT
- taskpri - result will be the priority value for node
-
- SEE ALSO
-
-
-
-
-
-
- lbbs.library/GetChatFlag
-
- NAME
- GetChatFlag - Retrieve Sysop Chat setting
-
- SYNOPSIS
- result = GetChatFlag(number, buffer)
- D0 D1 D2
-
- BOOL GetChatFlag(ULONG, APTR);
-
- FUNCTION
- Retrieve chat flag status on current node,
- return string information will be ON/OFF
-
- INPUTS
- number - the node ptr given by AllocNode
- buffer - buffer where status text will be put.
-
- SEE ALSO
-
-
-
-
- lbbs.library/STAMP_LASTON
-
- NAME
- STAMP_LASTON - Retrieve a date string on when user
- was last online
-
- SYNOPSIS
- STAMP_LASTON(node, buffer)
- D1 D2
-
- void *STAMP_LASTON(APTR, APTR);
-
- FUNCTION
- Retrieve a date string containing the date when user
- last was on this system.
-
-
- INPUTS
- node - the node ptr given by AllocNode
- buffer - buffer where stamp text will be put.
-
- SEE ALSO
-
-
-
- lbbs.library/CurrTime
-
- NAME
- CurrTime - Retrieve a current time string
-
- SYNOPSIS
- CurrTime(buffer)
- D2
-
- VOID *CurrTime(APTR);
-
- FUNCTION
- Retrieve a current time string
-
-
- INPUTS
- buffer - buffer where time string will be put.
-
- SEE ALSO
-
-
-
-
- lbbs.library/Version
-
- NAME
- Version - Retrieve a version number of this system
-
- SYNOPSIS
- version = Version()
-
- ULONG Version();
-
- FUNCTION
- Retrieve version number of current system
-
-
- SEE ALSO
-
-
-
-
-
-
-
- lbbs.library/ChatSet
-
- NAME
- ChatSet - Retrieve or Change current chat-status
-
-
- SYNOPSIS
- result = ChatSet(number, avail, Boolean)
- D0 D1 D2 D3
-
- BOOL ChatSet(ULONG, UBYTE, Boolean);
-
- FUNCTION
- Retrieve or Change chat status
-
-
- INPUTS
- number - node number
- avail - flag
- Boolean - TRUE / FALSE
-
- SEE ALSO
-
-
-
- lbbs.library/DeviceNode
-
- NAME
- DeviceNode - Retrieve driver used by a selected node
-
- SYNOPSIS
- DeviceNode(number, buffer)
- D1 D2
-
- VOID *DeviceNode(ULONG, APTR);
-
- FUNCTION
- Retrieve serial driver for selected node
-
- INPUTS
- number - node number of which information will be retrieved
- buffer - buffer where device name will be put
-
- SEE ALSO
- DeviceUnitNode, BaudRateNode
-
-
-
- lbbs.library/DeviceUnitNode
-
- NAME
- DeviceUnitNode - Retrieve serial unit number for selected node
-
- SYNOPSIS
- unit = DeviceUnitNode(number)
- D0 D1
-
- ULONG DeviceUnitNode(ULONG);
-
- FUNCTION
- Retrieve serial unit number for selected node
-
- INPUTS
- number - node number of which information will be retrieved
-
- RESULT
- unit
-
- SEE ALSO
- DeviceNode, BaudRateNode
-
-
-
- lbbs.library/BaudRateNode
-
- NAME
- BaudRateNode - Retrieve serial baudrate for selected node
-
- SYNOPSIS
- baud = BaudRateNode(number)
- D0 D1
-
- ULONG BaudRateNode(ULONG);
-
- FUNCTION
- Retrieve serial baudrate for selected node
-
- INPUTS
- number - node number of which information will be retrieved
-
- RESULT
- baudrate
-
- SEE ALSO
- DeviceNode, DeviceUnitNode
-
-
-
-
- lbbs.library/SendQRS
-
- NAME
- SendQRS - Send a QRS text to system
-
- SYNOPSIS
- result = SendQRS(node, string, length)
- D0 D1 D2 D3
-
- BOOL SendQRS(APTR, APTR, ULONG);
-
- FUNCTION
- Send a QRS text string to the user, regardless of settings
- defined for viewing of QRS commands
-
- INPUTS
- node - the node ptr given by AllocNode
- string - pointer to a string
- length - length of string
-
-
- SEE ALSO
- Write, WriteCRLF
-
-
-
-
- lbbs.library/PRV_COMMAND
-
- NAME
- PRV_COMMAND - Send an immediate command to system
-
- SYNOPSIS
- PRV_COMMAND(node, cmdstring)
- D1 D2
-
- VOID *PRV_COMMAND(APTR, APTR);
-
- FUNCTION
- Send an immediate command to system
-
-
- INPUTS
- node - the node ptr given by AllocNode
- cmdstring - pointer to a commandline string
-
-
- SEE ALSO
-
-
-
-
-
- lbbs.library/Get_ConferenceNo
-
- NAME
- Get_ConferenceNo - Retrieve current conference number
-
- SYNOPSIS
- conference = Get_ConferenceNo(node, boolean)
- D0 D1 D2
-
- ULONG Get_ConferenceNo(APTR, boolean);
-
- FUNCTION
- Retrieve current conference number, real or relative.
-
-
- INPUTS
- node - the node ptr given by AllocNode
- boolean - real or relative conference number
-
- RESULT
- If BIT 20 is set, then return conference number is relative.
-
- SEE ALSO
-
-
-
-
-
- lbbs.library/DropDTR
-
- NAME
- DropDTR - Send an OFFHOOK Command to selected node
-
- SYNOPSIS
- DropDTR(number)
- D1
-
- VOID *DropDTR(ULONG);
-
- FUNCTION
- Send an OFFHOOK Command to selected node
-
- INPUTS
- number - node number
-
- SEE ALSO
-
-
-
- lbbs.library/Get_NodeTask
-
- NAME
- Get_NodeTask - Retrieve selected nodes task
-
- SYNOPSIS
- Task = Get_NodeTask(number)
- D0 D1
-
- BPTR Get_NodeTask(ULONG);
-
- FUNCTION
- Retrieve selected nodes task pointer
-
-
- INPUTS
- number - node number
-
- SEE ALSO
-
-
-
- lbbs.library/Get_UserBaudrate
-
- NAME
- Get_UserBaudRate - Retrieve online-user's connected baud
-
- SYNOPSIS
- Ubaudrate = Get_UserBaudRate(number)
- D0 D1
-
- ULONG Get_UserBaudRate(ULONG);
-
- FUNCTION
- Retrieve baudrate information on selected nodes online user
-
-
- INPUTS
- number - node number
-
- SEE ALSO
-
-
-
-
-
- lbbs.library/Get_LogonType
-
- NAME
- Get_LogonType - Retrieve LogonType
-
- SYNOPSIS
- Logontype = Get_LogonType(number)
- D0 D1
-
- UBYTE Get_LogonType(ULONG);
-
- FUNCTION
- Retrieve LogonType for selected node
-
-
- INPUTS
- number - node number
-
- RESULT
- logontype - logon type can be the following four modes
- 0 = AWAIT_LOGON 1 = SYSOP_LOGON
- 2 = LOCAL_LOGON 3 = REMOTE_LOGON
-
-
-
- SEE ALSO
-
-
-
-
-
-
- lbbs.library/Get_ScrLeft
-
- NAME
- Get_ScrLeft - Retrieve the node screen leftedge coordinate
-
- SYNOPSIS
- ScrLeft = Get_ScrLeft(number)
- D0 D1
-
- UWORD Get_ScrLeft(ULONG);
-
-
- FUNCTION
- Retrieve the selected node screen leftedge coordinate
-
-
- INPUTS
- number - node number
-
-
- RESULT
- Xposition - initial upper left X position of screen(window)
-
- SEE ALSO
-
-
-
- lbbs.library/Get_ScrTop
-
- NAME
- Get_ScrTop - Retrieve the node screen coordinate
-
- SYNOPSIS
- ScrTop = Get_ScrTop(number)
- D0 D1
-
- UWORD Get_ScrTop(ULONG);
-
-
- FUNCTION
- Retrieve the selected node screen coordinate
-
-
- INPUTS
- number - node number
-
-
- RESULT
- Yposition - initial upper Y position of screen(window)
-
- SEE ALSO
-
-
-
- lbbs.library/Get_ScrWidth
-
- NAME
- Get_ScrWidth - Retrieve the node screen width
-
- SYNOPSIS
- ScrWidth = Get_ScrWidth(number)
- D0 D1
-
- UWORD Get_ScrWidth(ULONG);
-
-
- FUNCTION
- Retrieve the selected node screen width
-
-
- INPUTS
- number - node number
-
-
- RESULT
- width - initial width of screen(window)
-
- SEE ALSO
-
-
- lbbs.library/Get_ScrHeight
-
- NAME
- Get_ScrHeight - Retrieve the node screen height
-
- SYNOPSIS
- ScrHeight = Get_ScrHeight(number)
- D0 D1
-
- UWORD Get_ScrHeight(ULONG);
-
-
- FUNCTION
- Retrieve the selected node screen height
-
-
- INPUTS
- number - node number
-
-
- RESULT
- height - initial height of screen(window)
-
- SEE ALSO
-
-
-
-
- lbbs.library/PurgeLine
-
- NAME
- PurgeLine - abort serial input and flushes serial buffer
-
- SYNOPSIS
- PurgeLine(node)
- D1
-
- VOID *PurgeLine(APTR);
-
-
- FUNCTION
- Abort serial input and flushes serial buffer
-
-
- INPUTS
- node - the node ptr given by AllocNode
-
- SEE ALSO
-
-
-
- lbbs.library/PurgeLineStart
-
- NAME
- PurgeLineStart - clear serial buffer and request new input
-
- SYNOPSIS
- PurgeLineStart(node)
- D1
-
- VOID *PurgeLineStart(APTR);
-
-
- FUNCTION
- Clear serial buffer and request new input
-
-
- INPUTS
- node - the node ptr given by AllocNode
-
- SEE ALSO
-
-
-
- lbbs.library/PurgeLineEnd
-
- NAME
- PurgeLineEnd - clear serial buffer
-
- SYNOPSIS
- PurgeLineEnd(node)
- D1
-
- VOID *PurgeLineEnd(APTR);
-
-
- FUNCTION
- Clear serial buffer
-
-
- INPUTS
- node - the node ptr given by AllocNode
-
- SEE ALSO
-
-
-
-
-
- lbbs.library/NonStopText
-
- NAME
- NonStopText - Change the status flag of nonstop text
-
-
- SYNOPSIS
- NonStopText(node, boolean)
- D1 D2
-
- VOID *NonStopText(APTR, Boolean);
-
-
- FUNCTION
- Change the status flag of nonstop text
-
-
- INPUTS
- node - the node ptr given by AllocNode
- boolean - true = pause text , false = no pause of text
- SEE ALSO
-
-
-
-
- lbbs.library/LineCount
-
- NAME
- LineCount - Retrieve or change users current number of lines
- viewed
-
- SYNOPSIS
- Linecount = LineCount(node, lines, boolean)
- D0 D1 D2 D3
-
- UWORD LineCount(APTR, UBYTE, Boolean);
-
-
- FUNCTION
- Retrieve or change users current number of lines viewed
-
- INPUTS
- node - the node ptr given by AllocNode
- lines - number of lines
- boolean - true = retrieve , false = set
- SEE ALSO
-
-
-
- lbbs.library/ScreenType
-
- NAME
- ScreenType - Retrieve or change users current ScreenType
-
-
- SYNOPSIS
- ScrType = ScreenType(node, Type, boolean)
- D0 D1 D2 D3
-
- UWORD ScreenType(APTR, UBYTE, Boolean);
-
-
- FUNCTION
- Retrieve or change users current ScreenType
-
-
- INPUTS
- node - the node ptr given by AllocNode
- type - screentype
- boolean - true = retrieve , false = set
- SEE ALSO
-
-
-
-
- lbbs.library/QuickText
-
- NAME
- QuickText - change Quicktext flag
-
-
- SYNOPSIS
- QuickText(node, boolean)
- D1 D2
-
- VOID *QuickText(APTR, Boolean);
-
-
- FUNCTION
- Change Quicktext flag
-
-
- INPUTS
- node - the node ptr given by AllocNode
- boolean - true = retrieve , false = set
- SEE ALSO
-
-
- lbbs.library/GetDirFilePath
-
- NAME
- GetDirFilePath - Retrieve current conference dirfile path
- and selected dirname entry
-
- SYNOPSIS
- Maxdirs = GetdirfilePath(node, dirbuffer, dirnumber)
- D0 D1 D2 D3
-
- UWORD GetDirfilepath(APTR, APTR, UWORD);
-
-
- FUNCTION
- Retrieve current conference dirfile path and selected
- dirname entry
- if RESULT is NULL then no dirfiles are available in
- this conference
-
- INPUTS
- node - the node ptr given by AllocNode
- dirbuffer - pointer to buffer where dirpath will be put
- dirnumber - if NULL then UPLOAD dir will be retrieved
- otherwise selected dir will be found
- If UWORD = -1 then get hold dir.
-
- RESULT
- MaxDirs
- dirbuffer - holds a path (and name) for selected dir entry
-
- SEE ALSO
-
-
-
- lbbs.library/CallRexx
-
- NAME
- CallRexx - Routine called rexx
-
-
-
-
-
-
- lbbs.library/GetConfPath
-
- NAME
- GetConfPath - Retrieve conference directory path
-
- SYNOPSIS
- GetConfPath(node, buffer, ConfNumber)
- D1 D2 D3
-
- VOID *GetConfPath(APTR, APTR, ULONG);
-
- FUNCTION
- Retrieve current conference path
-
- INPUTS
- node - the node ptr given by AllocNode
- buffer - pointer to buffer where path will be put
- ConfNumber - Conference number (Real number) or NULL for current
-
-
- lbbs.library/GetUserData
-
- NAME
- GetUserData - Retrieve a Users account
-
- SYNOPSIS
- Userdata = GetUserData(node, UserNumber)
- D0 D1 D2
-
- APTR GetUserData(APTR, ULONG);
-
- FUNCTION
- Retrieve a user account, specified by userslot number.
-
-
- INPUTS
- node - the node ptr given by AllocNode
- UserNumber - Userslot number
-
- RESULT
- D0 returns pointer to a temporary assigned buffer, where you
- can read information you need, if you get a NULL returned
- in D0 an error occured.
-
-
-
-
- lbbs.library/PutUserData
-
- NAME
- PutUserData - Save an account
-
- SYNOPSIS
- result = PutUserData(node, buffer)
- D0 D1 D2
-
- BOOL PutUserData(APTR, APTR);
-
- FUNCTION
- Save an account, buffer holds a complete UserData structure
- either loaded with GetUserData or Created.
-
- INPUTS
- node - the node ptr given by AllocNode
- buffer - userdata buffer
-
-
-
- lbbs.library/SpyNode
-
- NAME
- SpyNode - Alloc node for use with this program
-
- SYNOPSIS
- Node = SpyNode(number)
- D0 D1
-
- APTR SpyNode(ULONG);
-
-
- FUNCTION
- Spy on node.
-
- INPUTS
- number - the node number to spy on.
-
- RESULT
- node - a pointer to the node for use with the spy operations
-
-
-
-
- lbbs.library/FreeSpy
-
- NAME
- FreeSpy - Remove reservation from bbs
-
- SYNOPSIS
- result = FreeSpy(node)
- D0 D1
-
- BOOL FreeSpy(APTR);
-
-
- FUNCTION
- Removes an allocated spy pointer node.
-
- If the node is already freed or node pointer invalid
- D0 will return NODE_ERROR
-
-
- INPUTS
- node - a pointer to a node structure
-
-
-
-
- lbbs.library/LoadLetter
-
- NAME
- LoadLetter - Read a message file from conference
-
- SYNOPSIS
- LMESSAGE = LoadLetter(node, conf, number, display/buffer, buffer, size)
- D0 D1 D2 D3 D4 D5 D6
-
- APTR LoadLetter(APTR, ULONG, ULONG, BOOLEAN, APTR, ULONG);
-
-
- FUNCTION
- Loads a message from specified conference either to display
- or into a buffer. Message is located by NUMBER.
- conference number cannot be RELATIVE.
-
-
- INPUTS
- node - a pointer to a node structure
- conf - conference number, if NULL then current conf.
- number - letter number
- display/buffer - boolean
- buffer - pointer to mesage buffer
- size - maximum size of message to be loaded.
-
-
- RESULT
- D0 returns an address pointer on message header structure,
- if D0 returns 1, an message base error occured
- or not a msgbase
- if D0 returns 2, message was not found or deleted
- if D0 returns 3, conference was not found
-
-
-
- lbbs.library/LoadLetterRaw
-
- NAME
- LoadLetterRaw - Read a message file from conference
-
- SYNOPSIS
- LMESSAGE = LoadLetterRaw(node, conf, offset, display/buffer, buffer, size)
- D0 D1 D2 D3 D4 D5 D6
-
- APTR LoadLetterRaw(APTR, ULONG, ULONG, BOOLEAN, APTR, ULONG);
-
-
- FUNCTION
- Loads a message from specified conference either to display
- or into a buffer. message is located OFFSET in msgbase.idx.
- conference number cannot be RELATIVE.
-
- INPUTS
- node - a pointer to a node structure
- conf - conference number, if NULL then current conf.
- offset - offset in msgbase.idx file
- display/buffer - boolean
- buffer - pointer to mesage buffer
- size - maximum size of message to be loaded.
-
-
- RESULT
- If D0 returns 1, an message base error occured
- or not a msgbase
- If D0 returns 2, message was not found or deleted
- If D0 returns 3, conference was not found
- All other cases D0 returns an address pointer on message
- header structure.
-
-
-
- lbbs.library/SaveLetter
-
- NAME
- SaveLetter - Save a message in conference
-
- SYNOPSIS
- result = SaveLetter(node, conf, From, To, Subject, flags, buffer)
- D0 D1 D2 D3 D4 D5 D6 D7
-
- BOOL SaveLetter(APTR, ULONG, APTR, APTR, APTR, LONG, APTR);
-
-
- FUNCTION
- Save a message in specified conference,
- or into a buffer. message is located OFFSET in msgbase.idx.
- conference number cannot be RELATIVE.
- if flag is negativ (BIT 31 = true) then message is loaded external.
- and buffer is a path and filename pointer.
-
-
- INPUTS
- node - a pointer to a node structure
- conf - conference number, if NULL then current conf.
- From - pointer to name of sender
- To - pointer to name of receiver
- Subject - pointer to mesage subject text
- flags - messge status flags (OR $80000000 = External file)
- buffer - mesage text pointer
-
-
-
- RESULT
- If D0 returns NULL, message was saved.
- If D0 returns 1, message was NOT saved.
-
-
-
-
-
- lbbs.library/QuietNode
-
- NAME
- QuietNode - Request current state of node
-
- SYNOPSIS
- result = QuietNode(number)
- D0 D1
-
- BOOL QuietNode(ULONG);
-
- FUNCTION
- Check if a node is in QUIET state
-
- INPUTS
- number - node number
-
-
-
- lbbs.library/UserStatus
-
- NAME
- UserStatus - Request current state of user
-
- SYNOPSIS
- userstatus = UserStatus(node)
- D0 D1
-
- BYTE QuietNode(APTR);
-
- FUNCTION
- Get status of user online
-
- INPUTS
- node - the node ptr given by AllocNode
-
- RESULT
- UserStatus , 0 = Normal, 1 = Co-Sysop, 2 = Sysop,
- 3 = NewUser, 4 = Guest
-
-
- *lbbs.library/LoadTagfile
-
- NAME
- LoadTagfile - Load Buffer of tagged files into internal buffer
-
- SYNOPSIS
- result = LoadTagfile(node)
- D0 D1
-
- BOOL SaveTagfile(APTR);
-
- FUNCTION
- Load Buffer of tagged files into internal buffer.
- Each file must be seperated with NULL after the name, and directly
- followed by a new filename.
-
- INPUTS
- node - the node ptr given by AllocNode
-
- RESULT
- result - loading success, or failed (could be no files in buffer)
-
-
- *lbbs.library/SaveTagfile
-
- NAME
- SaveTagfile - Save Buffer of tagged files into a external file
-
- SYNOPSIS
- result = SaveTagfile(node)
- D0 D1
-
- BOOL SaveTagfile(APTR);
-
- FUNCTION
- Save Buffer of tagged files into a external file.
- Each file ends with a NULL after the name, And directly followed
- by a new filename, or a NULL if there is more files in buffer.
-
- INPUTS
- node - the node ptr given by AllocNode
-
- RESULT
- result - saving success, or failed (could be no files in buffer)
-
-
-
-
- lbbs.library/ConfAccess
-
- NAME
- ConfAccess - Retrieve or set users usertype
-
- SYNOPSIS
- ConfAccess(node, buffer, boolean)
- D1 D2 D3
-
- VOID *ConfAccess(APTR,APTR,Boolean);
-
-
- FUNCTION
- Retrieve users confaccess type. Returned is the usertype of
- of user online.
-
- INPUTS
- node - the node ptr given by AllocNode
- buffer - buffer to save usertype in, or pointer to new usertype
-